DevForce Help Reference
DeconstructMany<T>(IEnumerable<T>,Boolean) Method


Whether to recursively perform the same operation on any values in the anonymous type that are themselves instances of an anonymous type
Deconstruct multiple instances of the same anonymous type into an IEnumerable of Object arrays.
Syntax
'Declaration
 
<IteratorStateMachineAttribute(IdeaBlade.Core.Reflection.AnonymousFns+d__11`1[T])> 
Public Overloads Shared Function DeconstructMany(Of T)( _ 
   ByVal anonItems As IEnumerable(Of T), _ 
   ByVal shouldRecurse As Boolean _ 
) As IEnumerable(Of Object())
'Usage
 
Dim anonItems As IEnumerable(Of T)
Dim shouldRecurse As Boolean
Dim value As IEnumerable(Of Object())
 
value = AnonymousFns.DeconstructMany(Of T)(anonItems, shouldRecurse)
[IteratorStateMachine(IdeaBlade.Core.Reflection.AnonymousFns+d__11`1[T])] 
public static IEnumerable<object[]> DeconstructMany<T>( 
   IEnumerable<T> anonItems, 
   bool shouldRecurse 
)

Parameters

anonItems
shouldRecurse
Whether to recursively perform the same operation on any values in the anonymous type that are themselves instances of an anonymous type

Type Parameters

T
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

AnonymousFns Class
AnonymousFns Members
Overload List

Send Feedback